internal/runtime/maps.Map.globalDepth (field)

15 uses

	internal/runtime/maps (current package)
		map.go#L227: 	globalDepth uint8
		map.go#L311: 	m.globalDepth = uint8(sys.TrailingZeros64(dirSize))
		map.go#L312: 	m.globalShift = depthToShift(m.globalDepth)
		map.go#L318: 		directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
		map.go#L352: 	entries := 1 << (m.globalDepth - nt.localDepth)
		map.go#L360: 	if old.localDepth == m.globalDepth {
		map.go#L376: 		m.globalDepth++
		map.go#L388: 	entries := 1 << (m.globalDepth - left.localDepth)
		map.go#L639: 	m.globalDepth = 0
		map.go#L640: 	m.globalShift = depthToShift(m.globalDepth)
		table.go#L669: 	it.globalDepth = m.globalDepth
		table.go#L726: 	entries := 1 << (it.m.globalDepth - it.tab.localDepth)
		table.go#L851: 	if it.globalDepth != it.m.globalDepth {
		table.go#L881: 		orders := it.m.globalDepth - it.globalDepth
		table.go#L886: 		it.globalDepth = it.m.globalDepth